home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / ZIP19.ARJ / MAKE_GCC.COM < prev    next >
Text File  |  1992-08-21  |  2KB  |  54 lines

  1. $ !
  2. $ !     "Makefile" for VMS versions of Zip, ZipCloak, ZipNote,
  3. $ !      and ZipSplit (stolen from Unzip)
  4. $ !
  5. $ !      IMPORTANT NOTE: do not forget to set the symbols as said below
  6. $ !                      in the Symbols section.
  7. $ !
  8. $ set verify    ! like "echo on", eh?
  9. $ !
  10. $ !------------------------------- Zip section --------------------------------
  11. $ !
  12. $ ! For crypt version, use version of make_gcc.com which in the zcrypt
  13. $ ! distribution.
  14. $ gcc zip
  15. $ gcc zipfile
  16. $ gcc zipup
  17. $ gcc fileio
  18. $ gcc util
  19. $ gcc deflate
  20. $ gcc globals
  21. $ gcc trees
  22. $ gcc bits
  23. $ gcc vms
  24. $ gcc VMSmunch
  25. $ link zip,zipfile,zipup,fileio,util,deflate,globals,trees,bits, -
  26.    vms,VMSmunch, gnu_cc:[000000]gcclib.olb/lib, sys$input:/opt
  27. sys$share:vaxcrtl.exe/shareable
  28. $ !
  29. $ !-------------------------- Zip utilities section ---------------------------
  30. $ !
  31. $ gcc /def=UTIL zipnote
  32. $ gcc /def=UTIL zipsplit
  33. $ gcc /def=UTIL /obj=zipfile_.obj zipfile
  34. $ gcc /def=UTIL /obj=zipup_.obj zipup
  35. $ gcc /def=UTIL /obj=fileio_.obj fileio
  36. $ gcc /def=UTIL /obj=util_.obj util
  37. $ link zipnote, zipfile_, zipup_, fileio_, util_, globals, VMSmunch, -
  38.    sys$input:/opt
  39. sys$share:vaxcrtl.exe/shareable
  40. $ link zipsplit, zipfile_, zipup_, fileio_, util_, globals, VMSmunch, -
  41.    gnu_cc:[000000]gcclib.olb/lib, sys$input:/opt
  42. sys$share:vaxcrtl.exe/shareable
  43. $ !
  44. $ !----------------------------- Symbols section ------------------------------
  45. $ !
  46. $ ! Set up symbols for the various executables.  Edit the example below,
  47. $ ! changing "disk:[directory]" as appropriate.
  48. $ !
  49. $ zip        == "$disk:[directory]zip.exe"
  50. $ zipnote    == "$disk:[directory]zipnote.exe"
  51. $ zipsplit    == "$disk:[directory]zipsplit.exe"
  52. $ !
  53. $ set noverify
  54.